home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / intmail2 / nntpdemo.dpr < prev    next >
Encoding:
Text File  |  1999-07-20  |  407 b   |  19 lines

  1. program nntpdemo;
  2.  
  3. uses
  4.   Forms,
  5.   nntpmain in 'nntpmain.pas' {NNTPForm},
  6.   nntppst in 'nntppst.pas' {ArticleForm},
  7.   popview in 'popview.pas' {MsgViewDlg},
  8.   msabout in 'msabout.pas' {AboutDlg},
  9.   nntpsu in 'nntpsu.pas' {SetupDlg},
  10.   nntplst in 'nntplst.pas' {NGListDlg};
  11.  
  12. {$R *.RES}
  13.  
  14. begin
  15.   Application.Initialize;
  16.   Application.CreateForm(TNNTPForm, NNTPForm);
  17.   Application.Run;
  18. end.
  19.